jQuery.noConflict();

jQuery(document).ready(function()
{
	whichlightbox();

	jQuery("#coda-slider-1").codaSlider({
		autoSlide: false,
		autoSlideInterval: 5000,
		autoSlideStopWhenClicked: true,
		dynamicArrows: false,
		dynamicTabs: false,
		autoHeight: false
	});
});

function whichlightbox()
{
	var whichtheme = jQuery("meta[name=sp3]").attr('content');
	if(whichtheme == 1 || whichtheme == 3 )
	{
		jQuery("a[rel^='prettyPhoto'], a[rel^='lightbox[showCase]']").prettyPhoto({
										theme: 'light_rounded' /* facebook / light_rounded / dark_rounded / light_square / dark_square */																		   });
	}
	else
	{
		jQuery("a[rel^='prettyPhoto'], a[rel^='lightbox[showCase]']").prettyPhoto({
										theme: 'dark_rounded' /* facebook / light_rounded / dark_rounded / light_square / dark_square */																		   });
	}
}
