$(document).ready(function() {
	$('.sub_content_container').each(function() {
		var link = $(this).find('.sub_content_link').hide().attr('href');
		if (link) {
			$(this).click(function() {
				document.location.href = link;
			});
			$(this).hover(function() {
				$(this).css('cursor','pointer');	
			},function() {
				$(this).css('cursor','default');
			});
		}
		$(this).hover(function() {
			$(this).find('.sub_content_item_top').css('background-position','top right');
			$(this).find('.sub_content_item').css('background-position','bottom right');
		},
		function() {
			$(this).find('.sub_content_item_top').css('background-position','top left');
			$(this).find('.sub_content_item').css('background-position','bottom left');
		});
	});
});