/*! Phoenix Organics Polaroid v1 <http://nvinteractive.co.nz>
	Copyright (c) NV Interactive
	
	References:
		jquery-1.2.6.js +
		
	Release Notes:

		
*/

header = function() {

	

    var init = function() {
		
		if(window.location.pathname == "/" || window.location.pathname == "/default.aspx"){
			var h = 290;
			var p = "/flash/header/header-home.swf";
		}else{
			var h = 170;
			var p = "/flash/header/header-internal.swf";
		}
		
		var pars = { 	
						wmode: "transparent"
		};
		
		var el = $("#masthead .branding").get(0);
		writeFlash(el, p, 1000, h, pars)
	}

    return {
        /* Public API
        */
        init: init
    }

} ();


$(header.init);


