$(document).ready(function() {
    /*
    $.localScroll({
    	hash: true,
    	margin: true,
    	duration: 800,
    	easing: 'swing'
    });
    */
    
    $('a.fancybox').fancybox({
    	'title': $($(this).children()[0]).attr('alt'),
    	'titlePosition': 'inside',
    	'overlayColor': '#000',
    	'overlayOpacity': 0.7
    });
});

// Newsletter Box Animate
$("a#newsletter-button").click().toggle(

function() {
    $('#newsletter-form-wrapper').animate({
        width: 'show'
    }, 'slow');
},

function() {
    $('#newsletter-form-wrapper').animate({
        width: 'hide'
    }, 'slow');
});

// Slider
$(function(){
	$('#carousel').infiniteCarousel({imagePath: '/jquery/infinitecarousel2/images/'});

	/* $('div.thumb').parent().css({'margin':'0 0 0 -125%', 'left' : '25%', 'padding' : '0 0 0 75%'}); */
});
