$(function(){
	$('a.newWindow').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	$('a.selectedLanguage').click(function(){
		var _h = $(this).height();
		var _w = $(this).width();
		$('a.selectableLanguage').each(function(){
			var _rel = parseFloat($(this).attr('rel'));
			$(this).css({'top': (_rel*_h)+((_rel+1)*10)+'px', 'width' : _w+'px' });
			$(this).slideToggle('fast');
		});
		return false;
	});
	
	var _phh = 0;
	$('#content-top .product').each(function(){
		if(_phh < $(this).children('.product-holder').height())
			_phh = $(this).children('.product-holder').height();
	});
	$('#content-top .product .product-holder').height(_phh+100);
	
	$('a.newWindow').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	$('a.contact-tip').cluetip({leftOffset:-120,width:250});
	$('a.contact-tip-dtb-right').cluetip({leftOffset:-260,width:250});
	$('a.contact-tip-dtb-left').cluetip({leftOffset:-140,width:250});
});
