$(document).ready(function(){
	/*
	$(':text').labelify();
	$('textarea').labelify();
	$('.stylish_select select').sSelect({ddMaxHeight: '160px'});
	$('#contact_form').submit(function() {
		var fl = "";
		var bull = "<br />\n&nbsp;&bull;&nbsp;";
		
		if ($('#c_subject').val()=='') { fl = fl + bull + "Choose Service type\n"; }
		if ($('#c_name').val()=='') { fl=fl+bull+"Name\n"; }
		if ($('#c_number').val()=='') { fl=fl+bull+"Phone\n"; }
		if ($('#c_postcode').val()=='') {fl = fl + bull + "Postcode\n"; }
		if ($('#c_security_code').val()=='') { fl = fl + bull + "Security code\n"; }
		if ($('#c_req').val()=='') { fl = fl + bull + "Requirements\n"; }
	
		if (fl=='') {
	        return true;
	    } else {
	    	$('#contact_form p').addClass('error');
	        $('#contact_form p').html("The following fields are required:\n\n" + fl);
	        return false;
	    }
	});
	
	*/
	
	$("#left_content").height($('#content').height());
});

// png fix
$(document).ready(function(){ 
        $(document).pngFix(); 
    });
	 
	$(document).ready(function(){
	
       $('#select1, #select2, #select3').sSelect({ddMaxHeight: '200px'});
		
     });
// end of png fix
