//xpngFix();

(function ($){
$.noConflict();
$(document).ready(function(){
	$('a.projekt_list').click(function()
	{
		var headline = $('#hl'+this.id).text();
 		$('#projekt_headline').text(headline);
 		var projekt_text = $('#projekt_text'+this.id).text();
 		$('#projekt_text').text(projekt_text);
 		/* $('#projektbanner').css('background-image','url('+this.rel+')'); */
	});
	
	$('a.smallvideo').click(function()
	{
		$('#projektbanner').css('height','230px');
		$('#div-videos').css('padding-left','300px');
		
	});
	
	$('a.bigvideo').click(function()
	{
		$('#projektbanner').css('height','331px');
		$('#div-videos').css('padding-left','240px');
		
		
	});
	
	$('a.projekt_list_right').click(function()
	{
		var headline = $('#hl'+this.id).text();
 		$('#projekt_headline').text(headline);
 		var projekt_text = $('#projekt_text'+this.id).text();
 		$('#projekt_text').text(projekt_text);
 		$('#projektbanner').css('background-image','url('+this.rel+')');
	});
	
	
	$("input[@name='art']").click(
		function()
		{
			if ($("input[@name='art']:checked").val()=="metall"){
				$('a.kunst').fadeTo("slow", 0.20);
				$('a.metal').fadeTo("slow", 1);
				$('a.stahl').fadeTo("slow", 1);
				$('a.alu').fadeTo("slow", 1);
			}
			else if ($("input[@name='art']:checked").val()=="kunst"){
				$('a.metal').fadeTo("slow", 0.20);
				$('a.stahl').fadeTo("slow", 0.20);
				$('a.kunst').fadeTo("slow", 1);
				$('a.alu').fadeTo("slow", 0.20);
			}
			else if ($("input[@name='art']:checked").val()=="stahl"){
				$('a.metal').fadeTo("slow", 1);
				$('a.stahl').fadeTo("slow", 1);
				$('a.alu').fadeTo("slow", 0.20);
				$('a.kunst').fadeTo("slow", 0.20);
			}
			else if($("input[@name='art']:checked").val()=="alu"){
				$('a.metal').fadeTo("slow", 1);
				$('a.stahl').fadeTo("slow", 0.20);
				$('a.alu').fadeTo("slow", 1);
				$('a.kunst').fadeTo("slow", 0.20);
			}
			else{
				$('a.kunst').fadeTo("slow", 1);
				$('a.metal').fadeTo("slow", 1);
				$('a.stahl').fadeTo("slow", 1);
				$('a.alu').fadeTo("slow", 1);
			}
			
			/*
			$('a.metal').fadeTo(10, 0.20);
			$('a.stahl').fadeTo(11, 0.20);
			$('a.alu').fadeTo(12, 0.20);
			$('a.kunst').fadeTo(13, 0.20);

			projektArt = $("input[@name='art']:checked").val();
			
			if($("input[@name='art']:checked").val()=="all")
			{
				$('a.metal').fadeTo("slow", 1);
				$('a.stahl').fadeTo("slow", 1);
				$('a.alu').fadeTo("slow", 1);
				$('a.kunst').fadeTo("slow", 1);
			}
			else if($("input[@name='art']:checked").val()=="alu" || $("input[@name='art']:checked").val()=="stahl")
			{
				$('a.'+projektArt).fadeTo("slow", 1);
				$('a.metal').fadeTo("slow", 1);
			}
			else $('a.'+projektArt).fadeTo("slow", 1);
			*/
		}
	);
	
	
	if (($('#projekt_id').text()) != "")
	{
		var projekt_id = $('#projekt_id').text();
		var headline = $('#hl'+projekt_id).text();
		$('#projekt_headline').text(headline);
 		var projekt_text = $('#projekt_text'+projekt_id).text();
 		$('#projekt_text').text(projekt_text);
 		var url = $('#'+projekt_id+'').attr("rel");
 		$('#projektbanner').css('background-image','url('+url+')');
	}
	
	$('#projektbanner .projekt_details h3').click(function(){
		$(this).next('.details').slideToggle(300);
	});
	
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
	
	//jQuery('#div_content_main', '#div_content_right').tinyLightbox({item:"a[@rel*=lightbox]"});
	jQuery('#div_content').tinyLightbox({item:"a[@rel*=lightbox]"});
});



})(jQuery);

