$(document).ready(function() {

	$('#birds').cycle({ fx: 'fade', delay: 2000 });
	$("select").custSelectBox();

	// Fix all inline PNG images and the element #container with the custom sizingMethod of "scale"
	$("img[@src$=png], .skrapa").pngfix();
	
	//$(document).pngFix(); 


	$(".form").focus( function(){									
		if($(this).val() == $(this).attr("alt")){
			$(this).val("");	
		}			
	});
	$(".form").blur( function(){
		if($(this).val() == ""){
			$(this).val($(this).attr("alt"));	
		}			
	});


});
