/*$(document).ready(function(){
    $('.rf').flash(
        { 
            src: 'http://www.mbiuae.com/wp-content/themes/mbi/swf/myriadpro-light.swf', 
            flashvars: { 
                css: [
                    '* { color: #666666; }',
                    'a { color: #0099CC; text-decoration: none; }',
                    'a:hover { text-decoration: underline; }'
                ].join(' ')
            }
        },
        { version: 6 },
        function(htmlOptions) {
            htmlOptions.flashvars.txt = this.innerHTML;
            this.innerHTML = '<div>'+this.innerHTML+'</div>';
            var $alt = $(this.firstChild);
            //htmlOptions.height = $alt.height();
			htmlOptions.height = "30px";
            htmlOptions.width = $alt.width();
            $alt.addClass('alt');
            $(this)
                .addClass('flash-replaced')
                .prepend($.fn.flash.transform(htmlOptions));						
        }
    );
});

$(document).ready(function(){
    $('.rf2').flash(
        { 
            src: 'http://www.mbiuae.com/wp-content/themes/mbi/swf/myriadpro-light.swf', 
            flashvars: { 
                css: [
                    '* { color: #ffffff; }',
                    'a { color: #0099CC; text-decoration: none; }',
                    'a:hover { text-decoration: underline; }'
                ].join(' ')
            }
        },
        { version: 6 },
        function(htmlOptions) {
            htmlOptions.flashvars.txt = this.innerHTML;
            this.innerHTML = '<div>'+this.innerHTML+'</div>';
            var $alt = $(this.firstChild);
            //htmlOptions.height = $alt.height();
			htmlOptions.height = "30px";
            htmlOptions.width = $alt.width();
            $alt.addClass('alt');
            $(this)
                .addClass('flash-replaced')
                .prepend($.fn.flash.transform(htmlOptions));						
        }
    );
});*/
$(document).ready(function(){
$("#cf_uploadfile2-4").filestyle({ 
    image: "btn-choose-file.gif",
    imageheight : 25,
    imagewidth : 57,
    width : 1
});
});
$(document).ready(function(){
	
	$(".seta").eq(0).addClass("active");
	$(".seta").eq(3).addClass("active");
	$("div.desc").hide();
	$("div.desc").eq(0).show();
	$("div.desc").eq(3).show();
	$(".seta").click(function(){
		$(this).next("div.desc").fadeIn("slow")
		.siblings("div.desc:visible").fadeOut("slow");
		$(this).toggleClass("active");
		$(this).siblings("h4.seta").removeClass("active");
});
});