

$(function(){
	
		var methods = {	        
	            alertlike : function(){
	                $.fallr('show', {
	                    content : '<p>Howdy.</p>'
	                });
	            },
	            confirmlike : function(){
	                var clicked = function(){
	                    alert('congrats, you\'ve deleted internet');
	                    $.fallr('hide');
	                };
	                $.fallr('show', {
	                    buttons : {
	                        button1 : {text: 'Yes', danger:true, onclick: clicked},
	                        button2 : {text: 'Cancel'}
	                    },
	                    content : '<p>Are you sure you want to delete internet?</p>',
	                    icon    : 'error'
	                });
	            },
	            promptlike : function(){
	                var clicked = function(){
	                    var yourname = $(this).children('form').children('#yourname').val();
	                    alert('Hello, ' + yourname);
	                    $.fallr('hide');
	                };
	                $.fallr('show', {
	                    buttons : {
	                        button1 : {text: 'Submit', onclick: clicked},
	                        button2 : {text: 'Cancel'}
	                    },
	                    content : '<p>Give me your name</p><form><input type="text" id="yourname" onkeydown="if(event.keyCode==13)return false;" /'+'></form>',
	                    icon    : 'form'
	                });
	            },
	             
	            middle : function(){
	                $.fallr('show', {
	                    content : '<p>Hello there</p>',
	                    position: 'center'
	                });
	            },         
	            iframe : function(){
	                $.fallr('show', {
                        content     : '<div class="1aminuteTrailer"><h4>1 a minute &#8226; Trailer</h4><iframe width="820" height="315" src="http://www.youtube.com/embed/dQ28_dmAOZs" frameborder="0" allowfullscreen></iframe></div>',
                        width       : 820, // 420 + 100,  100 = for width padding 
						position	: 'center',
                        buttons     : {
                            button1 : {text: 'Close'}    
                        }
                    });	            
	            },
				iframeNew : function(){
	                $.fallr('show', {
                        content     : '<div class="1aminuteTrailer"><h4>1 a minute &#8226; Destination Survival</h4><iframe width="820" height="315" src="http://www.youtube.com/embed/dQ28_dmAOZs" frameborder="0" allowfullscreen></iframe></div>',
                        width       : 820, // 420 + 100,  100 = for width padding 
						position	: 'center',
                        buttons     : {
                            button1 : {text: 'Close'}    
                        }
                    });	            
	            },
				iframeForm : function(){
	                $.fallr('show', {
                        content     : '<div class="1aminuteTrailer"><iframe id="pForm" height="605" allowTransparency="true" frameborder="0" scrolling="no" style="width:903px;border:none"  src="petition/index.html"><a href="petition/index.html" title="Sign "1 a Minute" Petition">Sign "1 a Minute" Petition</a></iframe></div>',
                        width       : 903, // 420 + 100,  100 = for width padding 
						position	: 'center',
                        buttons     : {
                            button1 : {text: 'Close'}    
                        }
                    });	            
	            },
				comingsoon : function(){
	                $.fallr('show', {
                        content     : '<div class="1aminuteTrailer"><iframe id="pForm" height="780" allowTransparency="true" frameborder="0" scrolling="no" style="width:820px;border:none"  src="http://www.1aminute.com/comingsoon/index.html"><a href="http://www.1aminute.com/comingsoon/index.html" title="Coming Soon!">Coming Soon!</a></iframe></div>',
                        width       : 820, // 420 + 100,  100 = for width padding 
						position	: 'center',
                        buttons     : {
                            button1 : {text: 'Close'}    
                        }
                    });	            
	            }
	        };
            $('a[href^="#fallr-"]').click(function(e){
                var id = $(this).attr('href').substring(7);
                methods[id].apply(this,[this]);
                return false;
            });
			
});	
