jQuery(document).ready(function($) {

	$('#rooms_gallery img').mouseover(function(){
		$(this).css('border', '3px solid #0094b3');
		$(this).prev().css('display', 'inherit');
	});
	
	$('#rooms_gallery img').mouseout(function(){
		$(this).css('border', '3px solid #fff');
		$(this).prev().css('display', 'none');
	});
	
	$('.rooms_img').mouseover(function(){
		$(this).css('border', '3px solid #0094b3');
	});
	
	$('.rooms_img').mouseout(function(){
		$(this).css('border', '3px solid #fff');
	});

});
