$(document).ready(function(){

	$('.image-preview a').click( function() {
		$("#big-image").html("");
		$("#big-image").append('<img src="'+ $(this).attr('href') + '" >');
		return false;
	});

	$("#big-image").html("");
	$("#big-image").append('<img src="'+ $(".image-preview a:first-child").attr('href') + '" >');

    
    $('.popup').click( function() {
        window.open( '/' + $(this).attr('href'), "gallery","menubar=0, location=0,status=0,toolbar=0, scrollbars=1, width=860,height=800" );
        return false;
    });
    
  
	$('#indexslide').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '320px',
		containerwidth: '840px'
	});
});
