$(document).ready(function() {
	

	if(typeof $('a.lightbox').fancybox == 'function') {
		$('a.lightbox').fancybox();
	}

	$("a.guarantee").fancybox({ 
		'overlayShow': true,
		'frameHeight': 500,
		'frameWidth': 500,
		'titleShow': false,
		'scrolling': 'no'
	}); 


	$("a.free_gift").fancybox({ 
		'overlayShow': true,
		'frameHeight': 600,
		'frameWidth': 520,
		'height': 600,
		'titleShow': false,
		'type':'iframe',
		'scrolling': 'yes',
		'autoScale': false
	}); 
	
	//ajax request for project gallery
	//click event-handler
	$("#mycarousel li").click(function () { 
		var rel = $(this).find("a").attr("rel");

		//AJAX CHANGE PAGE
		if(rel){
		$("#proj_gallery").html('<div align="center"><img src="/images/misc/loading.gif" alt="" /> Loading</div>')
		$.get("/details.php",{id: rel}, function(data){
		$("#proj_gallery").html(data);
		},"text");
		}
		
		
	}); 


});


