$(document).ready(function(){
	$('.scroll-pane').jScrollPane();		
	$(".panel img").each(function(){			
		$(this).hover(
			function(){ 
				var panel_ref = $(this).parent();
				var txt_heading = $('.txt_home', panel_ref);
				txt_heading.css('background-position', '0px -37px');
			},
			function(){ 
				var panel_ref = $(this).parent();
				var txt_heading = $('.txt_home', panel_ref);
				txt_heading.css('background-position', '0px 0px');
				
			}
		)	
		$(this).click(function() {
		  $('#target').click();
		  	var panel_ref = $(this).parent();
		  	var a_txt_home = $('.txt_home', panel_ref);
			window.location = a_txt_home.attr('href');			
		});
	
	});		
	$(".txt_home").each(function(){			
		$(this).hover(
			function(){ 
				$(this).css('background-position', '0px -37px');
			},
			function(){ 
				$(this).css('background-position', '0px 0px');				
			}
		)	
	});		
});
