// This is the implementation of SimpleSwap
// by Jehiah Czebotar
// Version 1.1 - June 10, 2005
// Distributed under Creative Commons
//
// Include this script on your page
// then make image rollovers simple like:
// <img src="/images/ss_img.gif" oversrc="/images/ss_img_over.gif">
//
// http://jehiah.com/archive/simple-swap
// 

$(document).ready(function(){
	//windowLinks();	
	//SimpleSwapSetup();
	if($.browser.msie)
	{
		if(parseInt($.browser.version) < 7)
		{
			//alert($('#outer').width());
			if($('#outer').width()< 600)
			{
				$('.topimg').addClass('hide');
				
			}
			else
				$('.topimg').removeClass('hide');
		}
	}
	
});

