// Pretty photo
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'facebook'
	});
});

// Corner
$(function(){
	$(".corner").corner("15px");
	$(".pages a").corner("15px");
	$(".pages span").corner("15px");
});

// equal heights
$(document).ready(function(){
	$(".equal_height").equalHeights();
});

// form
$(document).ready(function(){
	$(".uniform").uniform();
});

//preloading
$(function () {
	$('.preload').hide();//hide all the images on the page
    $('.preload').each(function(index) {
        $(this).fadeIn(2000);
    });
});

//swap
$(document).ready(function() {
	$('.swap').click(function()
	{
	   $(".swap").removeClass("active");
	   $(this).addClass("active");
	   var simg = 'url(\'/userfiles/image/index/'+$(this).attr('rel')+'\')';
	   $('.swap_images').css('backgroundImage', simg);
	});
});

//table sorter
$(document).ready(function() 
    { 
        $(".tablesorter").tablesorter(); 
    } 
);
