

<!-- FADE IN-OUTS  -->

$(document).ready(function(){
	$(".portfolio-2-columns img, #slider, .rounded-img_thumb, .rounded-img, .rounded-img3, .rounded-img2").fadeTo("fast", 0.8);
		$(".portfolio-2-columns img, #slider, .rounded-img_thumb, .rounded-img, .rounded-img3, .rounded-img2").hover(function(){
			$(this).fadeTo("fast", 1.0); 
		},function(){
		$(this).fadeTo("fast", 0.8); 
	});
});


<!-- FADE IN-OUTS FOR SOCIAL ICONS -->

$(document).ready(function(){
	$("#footer-info-socials img").fadeTo(100, 0.5);
		$("#footer-info-socials img").hover(function(){
			$(this).fadeTo(100, 1.0); 
		},function(){
		$(this).fadeTo(100, 0.5); 
	});
});


<!-- HOT KEYS -->

		function domo(){
				jQuery(document).bind('keydown', '1',function () {window.location.href = "company.php";return false; });
				jQuery(document).bind('keydown', '2',function () {window.location.href = "services.php";return false; });
				jQuery(document).bind('keydown', '3',function () {window.location.href = "portfolio.php";return false; });
				jQuery(document).bind('keydown', '4',function () {window.location.href = "projects.php";return false; });
				jQuery(document).bind('keydown', '5',function () {window.location.href = "blog.php";return false; });
				jQuery(document).bind('keydown', '6',function () {window.location.href = "jobs.php";return false; });
				jQuery(document).bind('keydown', '7',function () {window.location.href = "styles.php";return false; });
				jQuery(document).bind('keydown', '8',function () {window.location.href = "contact.php";return false; });
				jQuery(document).bind('keydown', '0',function () {window.location.href = "index.php";return false; });
				jQuery(document).bind('keydown', 'h',function () {window.location.href = "index.php";return false; });
				jQuery(document).bind('keydown', 'z',function () {$("#slider img, .rounded-img img, .rounded-img_thumb img, .portfolio-2-columns a, .portfolio-3-columns a").click();});
				jQuery(document).bind('keydown', 'i',function () {$("#siteinfo a").click();});
				jQuery(document).bind('keydown', 'e',function () {window.location.href = "mailto:your.mail@domain.com";return false; });
           			 }
			jQuery(document).ready(domo);

	


<!-- JQUERY TABS -->

$(document).ready(function() {

	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});



<!-- FANCYBOX -->

		$("a[rel=group]").fancybox();
		
		$("a.iframe").fancybox({
			  'autoDimensions'	: false,
			  'width':		600, 
			  'height':		600, 
			  'overlayShow'	:	false,
			  'autoScale' : true,
			  'padding' : 0,
		  });
	 
});

    $(document).ready(function() {
		$(".social-icons").tipTip({maxWidth: "auto"});
	});  

