$(document.body).ready(function(){
					
	$.clientCoords = function(){
		if(window.innerHeight || window.innerWidth){
			return {w:window.innerWidth, h:window.innerHeight}
		}
		return {
			w:document.documentElement.clientWidth,
			h:document.documentElement.clientHeight
		}
	}

	//------------------------------------------------------------------------------

	if($('#bodydiv'))
		$('#bodydiv').css('marginTop',125);
	
	if($('#bodydiv'))
		$('#bodydiv').css('marginLeft',($.clientCoords().w - $('#bodydiv').width())/2);
	
	$(window).resize(function(){	
	
		if($('#bodydiv'))
		$('#bodydiv').css('marginLeft',($.clientCoords().w - $('#bodydiv').width())/2);

	});

	//------------------------------------------------------------------------------

	$('#gocollections').mouseover(function(){
					
		$(this).css('backgroundColor','#f5fdff');
		$(this).css('color','#000');
	});
	
	$('#gocollections').mouseout(function(){
	
		$(this).css('backgroundColor','#CAE3DF');
		$(this).css('color','#444');
		
	});
	
	$('#gocollections').mousedown(function(){
	
		$(this).css('backgroundColor','#CCC');
		$(this).css('color','#444');
		
	});
	
	$('#gocollections').mouseup(function(){
					
		$(this).css('backgroundColor','#f5fdff');
		$(this).css('color','#000');
	});
	
	$('#gocollections').click(function(){
					
		window.top.location='./?pg=collections';
		
	});
	
	//------------------------------------------------------------------------------
	
	$('#search').mouseover(function(){
					
		$(this).css('backgroundColor','#f5fdff');
		$(this).css('color','#000');
	});
	
	$('#search').mouseout(function(){
	
		$(this).css('backgroundColor','#CAE3DF');
		$(this).css('color','#444');
		
	});
	
	$('#search').mousedown(function(){
	
		$(this).css('backgroundColor','#CCC');
		$(this).css('color','#444');
		
	});
	
	$('#search').mouseup(function(){
					
		$(this).css('backgroundColor','#f5fdff');
		$(this).css('color','#000');
	});
	
	//------------------------------------------------------------------------------
	
	$("#pictures").cycle({
						 
		fx: 'fade'
		
	});
	
	//-------------
	
	$("#cmb_collection").change(function(){
						
		window.top.location = './?pg=collections&cmb_collection='+document.getElementById('cmb_collection').value+'&cmb_design=NULL&cmb_color=NULL&page=1';
		
	});
	
	$("#cmb_design").change(function(){
						
		window.top.location = './?pg=collections&cmb_collection='+document.getElementById('cmb_collection').value+'&cmb_design='+document.getElementById('cmb_design').value+'&cmb_color=NULL&page=1';
		
	});
	
	$("#cmb_color").change(function(){
						
		window.top.location = './?pg=collections&cmb_collection='+document.getElementById('cmb_collection').value+'&cmb_design='+document.getElementById('cmb_design').value+'&cmb_color='+document.getElementById('cmb_color').value+'&page=1';
		
	});
  
});
