$().ready(function() {
    
	$(".links, .listing, .listing_preview").click(function() {
		window.location=$(this).find("a").attr("href");return false;
	});

	$(".listing, .listing_preview").mouseover(function() {
		$(this).css( {
		      'background-color' : '#efefef'
          } );
	});
	
	$(".listing, .listing_preview").mouseout(function() {
		$(this).css( {
            'background-color' : '#fff'
        } );
	});	
 
    
    $('#image_gallery').jqFancyTransitions({ 
        
        effect: 'wave', // wave, zipper, curtain
        width: 584, // width of panel
        height: 310, // height of panel
        strips: 10, // number of strips
        delay: 5000, // delay between images in ms
        stripDelay: 10, // delay beetwen strips in ms
        titleOpacity: 1, // opacity of title
        titleSpeed: 1000, // speed of title appereance in ms
        position: 'top', // top, bottom, alternate, curtain
        direction: 'left', // left, right, alternate, random, fountain, fountainAlternate
        navigation: true, // prev and next navigation buttons
        links: true // show images as links
        
    });
	
});
