$(document).ready( function() {

//popups
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
//form processing

		$('#contact').ajaxForm(function(data) {

			$('#success').attr('style', 'color: green; font-size: 1.4em; text-align: center;');
			$('#badname').attr('style', 'color: red; font-size: 1.4em; text-align: center;');
			$('#bademail').attr('style', 'color: red; font-size: 1.4em; text-align: center;');
		
			$('#success').hide();
			$('#badname').hide();
			$('#bademail').hide();
			$('#badserver').hide();
			
			if (data==1) {
				$('#success').fadeIn("slow");
				$('#contact').resetForm();
			} else if (data==2) {
				$('#badserver').fadeIn("slow");
			} else if (data==3) {
				$('#bademail').fadeIn("slow");
			} else if (data==4) {
				$('#badname').fadeIn("slow");
			}
			
		});

//Png Fix   
});

	jQuery(function($) {
    $("#peep").pngfix();
});