$(document).ready(function() {

	// implemented by mohsen talebi :: parsisun..ir

	//no conflict jquery
		//	jQuery.noConflict();
			

	//When page loads...
	$(".fp-block").hide(); //Hide all content
	$("div.fp-club-toolbar a:first").addClass("fp-option-1-active").show(); //Activate first tab
	$(".fp-block:first").show(); //Show first tab content

	//On Click Event
	$("div.fp-club-toolbar a").click(function() {
		
		
var activeTab =  $(this).attr("href"); //Find the href attribute value to identify the active tab + content
	//	alert(activeTab);
		
		$("div.fp-club-toolbar a").removeClass("fp-option-1-active"); //Remove any "active" class
		$(this).addClass("fp-option-1-active"); //Add "active" class to selected tab
		$(".fp-block").hide(); //Hide all tab content

		
		$(activeTab).fadeIn(1000); //Fade in the active ID content
		return false;
	});



	   $(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })})	
		
//images pretty show
//$('.prettyimage').attr('rel', 'prettyPhoto');
//$('.blog a img').closest('a').attr('rel', 'prettyPhoto');
//$('.prettyimage').closest('a')
//alert($('.prettyimage').closest('a'));
//$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook',slideshow:5000, autoplay_slideshow:true});


	 

});

$(window).load(function() {
    $('#slider').nivoSlider();
});
