// JavaScript Document
jQuery.fn.equalHeight = function () {
	var height		= 0;
	var maxHeight	= 0;

	// Store the tallest element's height
	this.each(function () {
		height		= jQuery(this).outerHeight();
		maxHeight	= (height > maxHeight) ? height : maxHeight;
	});

	// Set element's min-height to tallest element's height
	return this.each(function () {
		var t			= jQuery(this);
		var minHeight	= maxHeight - (t.outerHeight() - t.height());
		var property	= jQuery.browser.msie && jQuery.browser.version < 7 ? 'height' : 'min-height';

		t.css(property, minHeight + 'px');
	});
};

$(document).ready(function(){
// equal height for content layers
$("#site_content, #site_sidebar_left, #site_sidebar_right, #site_content_area").equalHeight();

// language chooser layer
$("#language_chooser").attr('href','#');
$("#language_chooser").click(function(){$("#language_chooser_content").stop().css({"opacity": 0.25, marginLeft: "960px", marginTop: "30px"}).stop().animate({width: "200px", height: "160px", marginLeft: "745px", marginTop: "30px", opacity: 0.9},{queue: false});});
$("#language_chooser_content").hover(function(){$("#language_chooser_content").show();},function(){$("#language_chooser_content").delay(500).animate({width: "5px", height: "5px", marginLeft: "960px", marginTop: "30px", opacity: 0},{duration:750},{queue: false}).fadeOut();});

// site menu
$("#products_menu").hide();
$("#products").toggle(function(){$("#products_menu").slideDown(200);},function(){$("#products_menu").slideUp(200);});

// Newsticker
(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);

$(".newsticker").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 1,
		auto:6000,
		speed:1000
	});

// index house buttons and description
$("#index_row1_house_1").hover(
function(){
$("#index_row1_house_1").attr('src','images/index_row1_venduct_h.jpg');
$("#index_row1_house_1_desc").css({"opacity": 0.25, marginLeft: "75px", marginTop: "30px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_1").attr('src','images/index_row1_venduct.jpg');
$("#index_row1_house_1_desc").stop().animate({width: "5px", height: "5px", marginLeft: "75px", marginTop: "30px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_2").hover(
function(){
$("#index_row1_house_2").attr('src','images/index_row1_roll_fix_h.jpg');
$("#index_row1_house_2_desc").css({"opacity": 0.25, marginLeft: "480px", marginTop: "30px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_2").attr('src','images/index_row1_roll_fix.jpg');
$("#index_row1_house_2_desc").stop().animate({width: "5px", height: "5px", marginLeft: "480px", marginTop: "30px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_3").hover(
function(){
$("#index_row1_house_3").attr('src','images/index_row1_flavent_h.jpg');
$("#index_row1_house_3_desc").css({"opacity": 0.25, marginLeft: "55px", marginTop: "130px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_3").attr('src','images/index_row1_flavent.jpg');
$("#index_row1_house_3_desc").stop().animate({width: "5px", height: "5px", marginLeft: "55px", marginTop: "130px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_4").hover(
function(){
$("#index_row1_house_4").attr('src','images/index_row1_traufelemente_h.jpg');
$("#index_row1_house_4_desc").css({"opacity": 0.25, marginLeft: "500px", marginTop: "130px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_4").attr('src','images/index_row1_traufelemente.jpg');
$("#index_row1_house_4_desc").stop().animate({width: "5px", height: "5px", marginLeft: "500px", marginTop: "130px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_5").hover(
function(){
$("#index_row1_house_5").attr('src','images/index_row1_permo_h.jpg');
$("#index_row1_house_5_desc").css({"opacity": 0.25, marginLeft: "90px", marginTop: "225px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_5").attr('src','images/index_row1_permo.jpg');
$("#index_row1_house_5_desc").stop().animate({width: "5px", height: "5px", marginLeft: "90px", marginTop: "225px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_6").hover(
function(){
$("#index_row1_house_6").attr('src','images/index_row1_prismax_h.jpg');
$("#index_row1_house_6_desc").css({"opacity": 0.25, marginLeft: "465px", marginTop: "225px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_6").attr('src','images/index_row1_prismax.jpg');
$("#index_row1_house_6_desc").stop().animate({width: "5px", height: "5px", marginLeft: "465px", marginTop: "225px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_7").hover(
function(){
$("#index_row1_house_7").attr('src','images/index_row1_easy_form_h.jpg');
$("#index_row1_house_7_desc").css({"opacity": 0.25, marginLeft: "215px", marginTop: "250px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_7").attr('src','images/index_row1_easy_form.jpg');
$("#index_row1_house_7_desc").stop().animate({width: "5px", height: "5px", marginLeft: "215px", marginTop: "250px", opacity: 0},{queue: false}).fadeOut();});

$("#index_row1_house_8").hover(
function(){
$("#index_row1_house_8").attr('src','images/index_row1_trapac_h.jpg');
$("#index_row1_house_8_desc").css({"opacity": 0.25, marginLeft: "350px", marginTop: "250px"}).stop().animate({width: "245px", height: "145px", marginLeft: "150px", marginTop: "40px", opacity: 0.9},{queue: false});},
function(){
$("#index_row1_house_8").attr('src','images/index_row1_trapac.jpg');
$("#index_row1_house_8_desc").stop().animate({width: "5px", height: "5px", marginLeft: "350px", marginTop: "250px", opacity: 0},{queue: false}).fadeOut();});

// product pages image gallery
if ($("#img_gallery").is("div")){
$("#img_gallery").css({"width":"420px"});
$("#gallery_img1").attr({"src":(($("#gallery_img1").attr("src")).replace("_h.jpg",".jpg"))});
var img1 = $("#gallery_img1").attr("src");
$("#img_gallery img").css({"border":"1px solid #BABCBE", "padding":"4px", "float":"left", "margin":"5px", "display":"block", "cursor":"pointer"});
$("#gallery_img1").click(function(){$("#gallery_img1").css({"opacity":0}).attr({"src": img1}).css({"opacity": 0}).animate({opacity:1});});
$("#gallery_img2").click(function(){$("#gallery_img1").css({"opacity":0}).attr({"src":(($("#gallery_img2").attr("src")).replace("_h.jpg",".jpg"))}).css({"opacity": 0}).animate({opacity:1});});
$("#gallery_img3").click(function(){$("#gallery_img1").css({"opacity":0}).attr({"src":(($("#gallery_img3").attr("src")).replace("_h.jpg",".jpg"))}).css({"opacity": 0}).animate({opacity:1});});
$("#gallery_img4").click(function(){$("#gallery_img1").css({"opacity":0}).attr({"src":(($("#gallery_img4").attr("src")).replace("_h.jpg",".jpg"))}).css({"opacity": 0}).animate({opacity:1});});
}

// downloads
$("#accordion ul").hide();
$("#accordion h3").bind('click', function(){
$("#accordion h3").css({'color':'#666666', 'background-image':'url(images/downloads_category_closed_bg.gif)'});
$("#accordion ul").slideUp();
$(this).css({'color':'#C00', 'background-image':'url(images/downloads_category_open_bg.gif)'});
$(this).next('ul').slideDown();
});

// site search
$("#site_search ul").hide();
$("#site_search h3").bind('click', function(){
$("#site_search h3").css({'color':'#666666', 'background-image':'url(images/downloads_category_closed_bg.gif)'});
$("#site_search ul").slideUp();
$(this).css({'color':'#C00', 'background-image':'url(images/downloads_category_open_bg.gif)'});
$(this).next('ul').slideDown();
});

// media
$("#media ul").show();
$("#media h3").bind('click', function(){
$("#media h3").css({'color':'#666666', 'background-image':'url(images/downloads_category_closed_bg.gif)'});
$("#media ul").slideUp();
$(this).css({'color':'#C00', 'background-image':'url(images/downloads_category_open_bg.gif)'});
$(this).next('ul').slideDown();
});

});
