$(document).ready(function() {

	$(".product_tip").live('mouseover', function() {
		if(editMode != 1){
			$(this).parents('li').children(".product_tip_info").show();
		}
	}).live('mouseout', function() {
		if(editMode != 1){
			$(this).parents('li').children(".product_tip_info").hide();
		}
	});
	
	$('.catlink a').live('click', function(){
		showWaiting('<br>Fetching The '+$(this).text()+'...');
		$('.catlink a').removeClass('active');//.css('text-align', 'center');
		var text = $(this).text();
		var elem = $(this);
		//$(this).html('<img src="img/catloader.gif></img>').addClass('active');
		$(this).addClass('active');
		catID = $(this).parent('li').attr('name');
		$('#products_cont').load('listProducts.php', {'catID':catID}, hidePopup);
		return false;		
	});
 
});
	
var editMode = 0;
var catID;
var screenHeight;
var screenWidth;
var popup = 0

$('#mast_img').cycle({ 
    fx:     'fade', 
    timeout: 5000, 
    delay:  -2000 
});


