// initialise plugins
$(document).ready(function() {
	/* Open share on twitter and facebook in a popup window */
	  $('.popup').click(function(event) {
	    var width  = 575,
	        height = 400,
	        left   = ($(window).width()  - width)  / 2 + 200,
	        top    = ($(window).height() - height) / 2
	    
	    window.open(this.href, 'share', ['status=1,width=',width,',height=',height,',top=',top,',left=',left].join(''));
	    return false;
	});
	
	$("span.toggleintro").click(function () {
		$("#introcontent").slideToggle("slow");
		$(this).toggleClass("toggleintro-active");
	});
	
	//Page scroll
	$('#connect').localScroll();
	
	// Validate Plugin
	$(function() {
        $("#subForm").validate();
	});
		
	//Wiltos Dynamic Carousel
	$('.slidewrap').carousel({
		slider: '.slider',
		slide: '.slide',
		nextSlide: '.next',
		prevSlide: '.prev',
		speed: 300 // ms.
	});
	
	/* Lightbox plugin - Fancybox */
	$("a.box").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity' : 0.5,
		'titleShow' : false
	});
});
