$.noConflict();

jQuery(document).ready(function(){
	
	jQuery(".cat").hover(
			function () {
				jQuery(this).children(".scat").children().hide();
			},
			function () {
				jQuery(this).children(".scat").children().show();
		});
	
	jQuery("a.lightbox").colorbox({title:" ", opacity:0.6, maxWidth:"1200px", maxHeight:"800px"});	
	
});
	

