$(function(){

// ******* show link in list ************	

	$('.gallery a').hover(function(){

		$imgUrl = $(this).attr('href');
		
		$('.right-col-two').find("a[href='"+ $imgUrl +"']").css('border-bottom','2px solid black').css('font-weight', 'bold').parent().next().css('background','#eee');
	}, function(){
		$('.right-col-two').find("a[href='"+ $imgUrl +"']").css('border-bottom','1px solid #E4E4E4').css('font-weight', 'normal').parent().next().css('background','none');
	});
});
