$(document).ready(function(){
	$('a.resizable').lightBox();
	$('#bouwfondsprojekty').change(goforit);
	$('#nase-projekty').submit(goforit);
	//HOVER PRO IE6
	if($.browser.msie && $.browser.version=='6.0'){
		$('table#cenik tr').hover(
			function(){
				this.origColor=$(this).find('td').css('backgroundColor');
				$(this).find('td').css('backgroundColor','#DDD');
			},
			function(){
				$(this).find('td').css('backgroundColor',this.origColor);
			}
		);
	}
	//KLIKACI RADEK
	$('table#cenik td a').css('textDecoration','none');
	$('table#cenik td').each(function(){
		var a=$(this).find('a');
		if(a[0]){
			$(this)
				.css('cursor','pointer')
				.click(function(){
					window.location.href=$(this).find('a').attr('href');
				});
		}
	});
});

goforit=function(){
	el = document.getElementById('bouwfondsprojekty');
	document.location = el.options[el.selectedIndex].value;
	return false;		
}
