jQuery.noConflict();
(function($){

$(document).ready(function(){

	if ($(document.body).hasClass('home'))
	{
		var els = $('#content .part').hide();
		var elIndex = 0;
		showElement();
	}

	if ($('#contact').length)
	{
		$('#contact .box1').hide();
		$('#why').change(function(){
			if (this.selectedIndex == 1)
			{
				$('#contact .box1').slideDown(600);
			}
			else
			{
				$('#contact .box1').slideUp(400);
			}
		});
	}

	function showElement()
	{
		elIndex++;

		$('#part' + elIndex).fadeIn(500);

		if (elIndex < els.length)
			setTimeout(showElement, 2000);
	}

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('img.png');
		}
	}

});

})(jQuery);
