//=============================================================================
KruseFireArms = {};

//=============================================================================
KruseFireArms.OnInit = function() {
	$(document).pngFix();				//IE PNG Fix
	$("a[rel^=Lightbox]").lightBox();	//Lightbox on Images
}

//=============================================================================
$(KruseFireArms.OnInit);

//=============================================================================
function toggleDefaultSearch(type) {
	if (type == 'focus') {
		if (document.getElementById('search_inventory').value == 'Search Inventory') {
			document.getElementById('search_inventory').value = '';
		}
	} else if (type == 'blur') {
		if (document.getElementById('search_inventory').value == '') {
			document.getElementById('search_inventory').value = 'Search Inventory';
		}
	}
}

//=============================================================================
