function myInit() {
	
	$("a[href^='http:']").not("[href*='mxmg.com']").attr('target','_blank');
	
	$('#archive > li > a').click( function() {		
		$(this).parent().toggleClass("open"); 
		return false;
		});
	
	$('#twitter_update_list li:last').css('border','none');
	
	$("#commentForm").submit(function() {		
		$('#commentForm').attr('method','post');
		errors = '';	
		if (!$('#cf_comment').val()) {
			errors += "Comment\n";
			}
		if (!$('#cf_name').val()) {
			errors += "Name\n";
			}
		if (!$('#cf_email').val()) {
			errors += "Email\n";
			}
		if (errors) {			
			alert("The following fields are required:\n\n"+errors);
			return false;
			} 	
		});
	
	
	$('#homePortfolio').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 0, 
		next:   '#next', 
		prev:   '#prev' 
	});
	
	
	}

