var jq = jQuery.noConflict(); 
jq( function() {



	jq( '.category' ).click( function() {
		jq( this ).toggleClass( 'active' )
		jq( this ).siblings( '.dropdown' ).toggle();
		jq( this ).find( '.indicator' ).toggleClass( 'indicator-active' );
		return false;
	} );
	jq( '#dock > li' ).hover( function() {
		jq( '.latest' ).fadeOut( 'fast' );
		jq( this ).addClass( 'dock-active' );
		jq( this ).children( 'span' ).fadeIn( 200 );
	}).bind( "mouseleave", function() {		
		jq( this ).removeClass( 'dock-active' );	
		jq( this ).children( 'span' ).fadeOut( 200 );
	} );
			
	jq( '#dock' ).bind( "mouseleave", function() {
		jq( '.latest' ).fadeIn( 1000 );
	} );
					jq('div.product').css({border:'1px solid #555'}).mouseover( function() {
						jq(this).css({			
						  top:'-5px',
						  left:'-5px'
						}).mouseout(function(){
							jq(this).css({			
							  top:'0px',
							  left:'0px'
							});
						});

				});



} );
