$(function(){
	
	// New window
	$('a.NewWindow').click(function(){
		window.open(this.href);
		return false;
	});
	
	// Rollovers - http://halestorm.co.uk
	var active_postfix = "-active";
	$("img.Rollover:not(.Active)").each(function() {
	
		var src = $(this).attr("src");
		var srcParts = src.split("/");
		var file = srcParts.pop();
		var ext = file.split(".").pop();
		var fileName = file.split(".").shift();
		var path = srcParts.join("/");
		
		this.originalSrc = this.src;
		this.mouseOverImage = new Image(this.width, this.height);
		this.mouseOverImage.src = path + "/" + fileName + active_postfix + "." + ext;
		
		$(this).mouseover(function(){
			this.src = this.mouseOverImage.src;
		}).mouseout(function(){
			this.src = this.originalSrc;
		});
	});
	$("img.Active").unbind("mouseover").unbind("mouseout");
	
	// Video
	$('#VideoContainer').flash({
		swf:'/swf/solar_backpack_1.1.swf',
		width:628,
		height:352
	});
});