
 $(function() {
 	$('.imgREPLACE').each(function (i) { if($(this).attr('class')!='') {
 		imgname=$(this).attr('class').split(" ")[1];
 		img=imgname.split("-"); 
 		$(this).html("");
 		if(img.length==1) {	$(this).html('<img src="img/'+img[0]+'.png" alt="'+$(this).html()+'"/>'); }
 		if(img.length==3) {	$(this).html('<img src="img/'+img[0]+'.png" style="width:'+img[1]+'px;height:'+img[2]+'px" alt="'+$(this).html()+'"/>'); }
 	}});
	$('#contactDiv').hide();
    if($('#main').html()) $('#main').hide().fadeIn(1000,function() {$('#contactDiv').height($('#main').height()+85).fadeIn(1000); });
    if($('#home').html()) $('#home').hide().fadeIn(1000,function() {$('#contactDiv').fadeIn(1000);});
    $('#topmenu').hide().fadeIn(2000);
    $('#bottominfo').hide().fadeIn(2000);
    var validator=$('#contactForm').validate({
		messages: {
		     jmeno: "<span class='error'>Zadejte prosím Vaše jméno!</span>",
		     email: {
		       required: "<span class='error'>Zadejte prosím email</span>",
		       email: "<span class='error'>Email musí být ve správném formátu</span>"
		     },
		     obsah: "<span class='error'>Zadejte text zprávy!</span>"
	   }	 
	});	
 	$(document).pngFix();
	$(window).bind('resize', function() { $('body').css("display","none"); $('body').css("display","block"); $(document).pngFix(); });
 });
