// Cross-Browser CSS javascript compatibility

// Get current style

function getStyle(Element){
	if(window.getComputedStyle == undefined){
		return Element.currentStyle;
	}
	else{
		return window.getComputedStyle(Element,null);
	}
}


// Set Style (currently for design purpose only)
function setStyle(Element, Property, Value){
	Element.style[Property] = Value;
}

