$(document).ready(function(){
		//$('img[@src$=.png]').ifixpng();
		
		// external link
		$(function(){$('a[href][rel*=external]').each(function(i){this.target = "_blank";});});
		
		
		$("li:has(ul)").hover(function()
        	{
			$(this).children("ul").css("display", "none");
			$(this).children("ul").show();
			},
		 function()
		 {
			$(this).children("ul").hide();
		 });
		
		$("a[rel^='prettyOverlay'],a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed: 'normal', /* fast/slow/normal */
			padding: 30, /* padding for each side of the picture */
			opacity: 0.8, /* Value betwee 0 and 1 */
			showTitle: true, /* true/false */
			allowresize: false /* true/false */
		});
		
		/*$('div.testimonials-list:eq(1)> div:gt(0)').hide();
		  $('div.testimonials-list:eq(1)> h2').click(function() {
			$(this).next('div:hidden').slideDown('fast')
			.siblings('div:visible').slideUp('fast');
		  });*/
		
		$('div.testimonials-list:eq(0)> div').hide();
		  $('div.testimonials-list:eq(0)> h2').click(function() {
			$(this).next().slideToggle('fast');
		  });
	
	});

