/*

Main Javascript for jQuery Realistic Hover Effect
Created by Adrian Pelletier
http://www.adrianpelletier.com

*/

/* =Realistic Navigation
============================================================================== */

	// Begin jQuery
	
jQuery(function() {

$('#tv-set').toggle(

                    function(){// you can add as much here as you'd like

                         $('#tv-box').show('slow');

                         $('#tvbox').attr('src','http://www.texaspete.com/images/tv-set-2.png');

                    }, function() {// same here

                         $('#tv-box').hide('slow');

                         $('#tvbox').attr('src','http://www.texaspete.com/images/tv-set.png');

                    });
					
					$('#tv-scramble').toggle(

                    function(){// you can add as much here as you'd like

                         $('#tv-box').show('slow');

                         $('#tvbox1').attr('src','http://www.texaspete.com/images/tv-animation.gif');

                    }, function() {// same here

                         $('#tv-box').hide('slow');

                         $('#tvbox1').attr('src','http://www.texaspete.com/images/tv-animation.gif');

                    });
					
					
					
				
	// End jQuery
	
	});
