$(document).ready(function(){
	$('a').click(function(){
		$(this).blur();
	});
	
/*	$('#weblog #right a').attr('target','_blank');*/
	
	striper('ul',null,'li','odd,even');
	
    // maxWidth();
    // 
    // $(window).resize(maxWidth);


	$('#storepic').Randomize(['store_tee.jpg','store_buttons.jpg','store_dog.jpg','store_thong.jpg'], webroot + 'img/');
	
});

// function maxWidth()
// {
//  var iw = $(window).attr('innerWidth');
//  var page = $('#page,#nav,#hdr');
//  if (iw > 1060)
//  {
//      page.css('width', '1060px');
//  }
//  else
//  {
//      page.css('width','auto');
//  }
// }

jQuery.Randomizer = {
	build: function(images, imgdir) {
		
		if ($(this)) $(this).attr('src',imgdir + images[Math.ceil(Math.random()*images.length)-1]);
	}
};

jQuery.fn.Randomize = jQuery.Randomizer.build;