/* Author: 

*/
    $(window).load(function() {
            $('#slider').nivoSlider({
                effect:'boxRandom,boxRain,boxRainReverse',
                pauseTime:5000,
                pauseOnHover:false
            });
			

    });



$(document).ready(function(){
$("a[rel^='lightbox']").prettyPhoto()
$('#taby div').hide(); // Hide all divs
$('#taby div:first').show(); // Show the first div
$('.tab_menu li:last').addClass('active'); // Set the class of the first link to active
$('.tab_menu li a').click(function(){ //When any link is clicked
$('.tab_menu li').removeClass('active'); // Remove active class from all links
$(this).parent().addClass('active'); //Set clicked link class to active
var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
$('#taby  div').hide(); // Hide all divs
$(currentTab).show(); // Show div with id equal to variable currentTab
return false;
});

});



















