$(document).ready(function() {
	
	// Nivo slider
	$('#slideshow').nivoSlider({
		effect: 'random',
		slices: 10,
		animSpeed: 500,
		pauseTime: 5000,
		directionNav: true, //Next & Prev
		directionNavHide: true, //Only show on hover
		controlNav: true, //1,2,3...
		keyboardNav: true, //Use left & right arrows
		captionOpacity: 1, //Universal caption opacity
		pauseOnHover: true //Stop animation while hovering
	});
	
	$('#slideshow').find('.nivo-slice:first').addClass('roundleft');
	$('#slideshow').find('.nivo-slice:last').addClass('roundright');
	
	
	// Prettyphoto
	$("a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 40, /* padding for each side of the picture */
				opacity: 0.35, /* Value betwee 0 and 1 */
				showTitle: false, /* true/false */
				allowresize: true, /* true/false */
				counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
				theme: 'dark_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
			});


	// Pagetitle search bar
	$('.pagetitle form input.text').click(function() { $(this).attr('value', ''); });
	
	
	// PNG fix
	if(jQuery.browser.version.substr(0,1) < 7) {
		DD_belatedPNG.fix('#header h1, #holder, #content blockquote, #content form input.text, #content form textarea, .blogpost .cmntshead .rss, #services ul li h3, .project_small, #logos li img, #footer .left a, .nivo-controlNav, .nivo-controlNav a, .nivo-directionNav a');
	}
		
});
