		$(document).ready(function() {
			
			$("#contact_us").validationEngine()
		});
	

			$(document).ready(function(){
				$(".iframe").colorbox({width:"620px", height:"400px", iframe:true});
				$("#click").click(function(){ 
					$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
					return false;
				});
			});
	 
	 
	 $(function() {
            $("#1, #2, #3").lavaLamp({
                fx: "backout", 
                speed: 700,
                click: function(event, menuItem) {
                    return true;
                }
            });
        });


$(document).ready(function(){	$(".thumbs img").fadeTo("fast", 0.6); 
	$(".thumbs img").hover(function(){		$(this).fadeTo("fast", 1.0); 
		},function(){   		$(this).fadeTo("fast", 0.6); 
			});});

