/* Author: 

	Javier Domínguez González
	Productora Multimedia Flash
	www.productoraflash.es

*/


$(document).ready(function() {
	
	// Home
	
	$('.flexslider').flexslider();

	$('.bwWrapper').BlackAndWhite();

	// General para todo el theme

	$('a[rel~=external]').attr('target', 'blank');
	
	$("a.fancy").fancybox();

	$("a#despliega_slide_contacto").click(function(event) {
	
		event.preventDefault();

		$('a#despliega_slide_contacto').fadeOut("slow");
	

	 	$('#topslide').slideToggle('slow', function() {
		
			$('a#despliega_slide_contacto').toggleClass("opened");	
			
	 	
	 	});
	 
	 	$('a#despliega_slide_contacto').fadeIn("slow");

	});

	// Home Categories

	$("#la_arquitectura h2").mouseover(function(event) {

		$('ul#listado_urbanismo').fadeOut("slow");

		$('ul#listado_proyeccion').fadeOut("slow");

		$('ul#listado_arquitectura').slideToggle('slow', function() {
		
			//$('a#despliega_slide_contacto').toggleClass("opened");			
	 	
	 	});


	});	

	$("#el_urbanismo h2").mouseover(function(event) {

		$('ul#listado_arquitectura').fadeOut("slow");

		$('ul#listado_proyeccion').fadeOut("slow");

		$('ul#listado_urbanismo').slideToggle('slow', function() {
		
			//$('a#despliega_slide_contacto').toggleClass("opened");	
			
	 	
	 	});


	});	

	$("#proyeccion_internacional h2").mouseover(function(event) {


		$('ul#listado_arquitectura').fadeOut("slow");

		$('ul#listado_urbanismo').fadeOut("slow");

		$('ul#listado_proyeccion').slideToggle('slow', function() {
		
			//$('a#despliega_slide_contacto').toggleClass("opened");	
			
	 	
	 	});


	});	



	// Ultimo tweet

	$("#recibe-tweets").tweet({
		username: ["JLRAntunez"],
		count: 1,
		seconds_ago_text: "about %d seconds ago",
		a_minutes_ago_text: "about a minute ago",
		minutes_ago_text: "about %d minutes ago",
		a_hours_ago_text: "about an hour ago",
		hours_ago_text: "about %d hours ago",
		a_day_ago_text: "about a day ago",
		days_ago_text: "about %d days ago",
		view_text: "view tweet on twitter",
		template: "{join}{text} {time}"
	});

	// Clientes

	$('.show_more').live({
			mouseover: function(){
				$(this).find('a').stop().animate({opacity:'1'},150);
			},		
			mouseout: function(){
				$(this).find('a').stop().animate({opacity:'0'},150);
			}
	}); 

	//Contacto


	$('#contact').ajaxForm(function(data) {
        
        if (data==1){

            $('#success').fadeIn("slow");
            $('#bademail').fadeOut("slow");
            $('#badserver').fadeOut("slow");
            $('#contact').resetForm();
        
        } else if (data==2){
                        
            $('#badserver').fadeIn("slow");
        
        } else if (data==3) {
            
            $('#bademail').fadeIn("slow");
        }

    });


    //$("#contenedor_content").mCustomScrollbar("vertical",900,"easeOutCirc",1.05,"auto","no","no",0); 

    $('#scrollbar1').tinyscrollbar();


}); // End $(document).ready(function()

















