	jQuery(document).ready( function( $ ) {
		version = navigator.appVersion.indexOf("MSIE 7");
		if(version != -1){
			var ie7 = true;
		}
		else{
			var ie7 = false;
		}
		$( '.slide' ).hover(
				function () {
					if(ie7 == true){
						$( this ).stop().animate( { 'top': '-206px' }, 400 );
					}
					else{
						$( this ).stop().animate( { 'top': '-170px' }, 400 );
					}						
					$( this ).addClass('slide-up');
					$( this ).find( '.show' ).show();
					$( this ).find( '.full-link' ).hide();
					$( this ).find( '.description' ).hide();
				},
				function () {
					if(ie7 == true){
						$( this ).stop().animate( { 'top': '-33px' }, 400 );
					}
					else{
						$( this ).stop().animate( { 'top': '-0px' }, 400 );
					}
					$( this ).removeClass('slide-up');
					$( this ).find( '.show' ).hide();
					$( this ).find( '.full-link' ).show();
					$( this ).find( '.description' ).show();
				}
			);

		});

