$(document).ready(function($) {

	$('.drops div').hover(
			
		function() {
			s = $('div', this);
			s.show();
		},
		function() {
			s = $('div', this);
			s.hide();
		}
	);
	
	titling();


	$('.cat3 a.item').click(
		function(){
			$('.cat3 img#big_image').attr('src', $(this).attr('href'));
			return false;
		}
	);
	
	
});
	 
	 
function titling() {
	imgs = $('img[alt]');
}
 
 
 
