$(document).ready(function(){

	$("div.inputHide").each(function(index){
		
		var inputBox = $(this).children("input");
		var label = $(this).children("label");
		
		if (inputBox.val() == "") {
			label.show();
		}
		inputBox.keydown(function(){
			label.hide();
		});
		inputBox.click(function(){
			label.hide();
		});
		label.click(function(){
			label.hide();
			inputBox.focus();
		});
		inputBox.blur(function(){
			if ($(this).val() == "") {
				label.show();
			}
		});
		
	});
	
	var params = { quality:'high', allowScriptAccess:'always', wmode:'transparent' };
	var attributes = { id:'flashBars', name:'flashBars' };
	swfobject.embedSWF('/bars.swf', 'flashBars', '52', '37', '9.0.115', 'false', {}, params, attributes);

});
