 $(document).ready(function(){
	$(document).pngFix(); 
        $('.pics').cycle('fade').addClass('show');
        $(function() {
	    $('#pause').click(function() { $('#slides').cycle('pause'); return false; });
    		$('#play').click(function() { $('#slides').cycle('resume'); return false; });
    
    $('.slideshow').hover(
        function() { $('.controls').fadeIn(); },
        function() { $('.controls').fadeOut(); }
    );
    
    $('.gallery').cycle({
        fx:     'fade',
        speed:   400,
        timeout: 3000,
        next:   '#next',
        prev:   '#prev'
    });
	$('.gallery img').click( function() {
        if(jQuery(this).attr("rel") != "" && jQuery(this).attr("rel") != "undefined" ){ 
		 window.open($(this).attr('rel'), '_parent');
    return false;
        };
    });

 



});

 
    }); 
